home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / j_41_st.zoo / tutorial.zoo / tut / tut46.js < prev    next >
Encoding:
Text File  |  1991-06-06  |  249 b   |  22 lines

  1.          INVERSES AND DUALITY Pc
  2.    f=. +&3
  3.    g=. -&3
  4.    
  5.    [ x=. i. 4
  6. 0 1 2 3
  7.    
  8.    f x
  9. 3 4 5 6
  10.    !f x
  11. 6 24 120 720
  12.    g!f x
  13. 3 21 117 717
  14.    !&.f x
  15. 3 21 117 717
  16.    
  17.    !&.(+&3) x
  18. 3 21 117 717
  19.    !&.(*&2) x
  20. 0.5 1 12 360
  21.    
  22.